HTMLify

index.html
Views: 108 | Author: cody
<!-- Based on Build a Modern Landing Page Website by Kevin Powell for Traversy Media (2020)
see: https://www.youtube.com/watch?v=X1dz0xRbSJc -->

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="style.css" />
    <title>Great Sneakers Inc.</title>
  </head>
  <body>
    <header class="hero">
      <div class="container spacing">
        <h1 class="primary-title">It's okay to be a little obsessed with shoes</h1>
        <p>
          Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam
          perspiciatis facilis beatae laudantium quidem enim sit sequi!
        </p>
        <a href="#" class="btn">See what we have</a>
      </div>
    </header>
    <main>
      <section class="featured">
        <div class="container">
          <h2 class="section-title">Featured sneakers</h2>
          <div class="split">
            <a href="#" class="featured__item">
              <img
                src="https://github.com/kevin-powell/shoes/blob/master/img/shoe-4.png?raw=true"
                alt=""
                class="featured__img"
              />
              <p class="featured__details">
                <span class="price">$99</span>shoe name
              </p>
            </a>
            <a href="#" class="featured__item">
              <img
                src="https://github.com/kevin-powell/shoes/blob/master/img/shoe-5.png?raw=true"
                alt=""
                class="featured__img"
              />
              <p class="featured__details">
                <span class="price">$99</span>shoe name
              </p>
            </a>
            <a href="#" class="featured__item">
              <img
                src="https://github.com/kevin-powell/shoes/blob/master/img/shoe-6.png?raw=true"
                alt=""
                class="featured__img"
              />
              <p class="featured__details">
                <span class="price">$99</span>shoe name
              </p>
            </a>
          </div>
        </div>
      </section>
      <section class="our-products">
        <div class="container">
          <h2 class="section-title">Our sneakers</h2>
          <article class="product shoe-red spacing">
            <img
              src="https://github.com/kevin-powell/shoes/blob/master/img/shoe-1.png?raw=true"
              alt=""
              class="product__image"
            />
            <h3 class="product__title">A really nice shoe</h3>
            <p class="product__description">
              Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam
              perspiciatis facilis beatae laudantium quidem enim sit sequi!
            </p>
            <a href="" class="btn">Buy now</a>
          </article>

          <article class="product shoe-white shoe-left spacing">
            <img
              src="https://github.com/kevin-powell/shoes/blob/master/img/shoe-2.png?raw=true"
              alt=""
              class="product__image"
            />
            <h3 class="product__title">A really nice shoe</h3>
            <p class="product__description">
              Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam
              perspiciatis facilis beatae laudantium quidem enim sit sequi!
            </p>
            <a href="" class="btn">Buy now</a>
          </article>

          <article class="product shoe-blue spacing">
            <img
              src="https://github.com/kevin-powell/shoes/blob/master/img/shoe-3.png?raw=true"
              alt=""
              class="product__image"
            />
            <h3 class="product__title">A really nice shoe</h3>
            <p class="product__description">
              Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam
              perspiciatis facilis beatae laudantium quidem enim sit sequi!
            </p>
            <a href="" class="btn">Buy now</a>
          </article>
        </div>
      </section>
    </main>
  </body>
</html>

Comments